Uses of Class
negotiator.boaframework.ComponentsEnum

Packages that use ComponentsEnum
negotiator.boaframework   
negotiator.boaframework.repository   
 

Uses of ComponentsEnum in negotiator.boaframework
 

Methods in negotiator.boaframework that return ComponentsEnum
 ComponentsEnum BOAcomponent.getType()
           
static ComponentsEnum ComponentsEnum.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ComponentsEnum[] ComponentsEnum.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in negotiator.boaframework with parameters of type ComponentsEnum
 java.io.Serializable SessionData.getData(ComponentsEnum type)
          Returns the data stored by the given BOA component.
 java.io.Serializable NegotiationSession.getData(ComponentsEnum component)
          Method used to load the data saved by a component.
 void SessionData.setData(ComponentsEnum component, java.io.Serializable data)
          Method used to set the data to be saved by a BOA component.
 void NegotiationSession.setData(ComponentsEnum component, java.io.Serializable data)
          Method used o store the data of a component.
 

Constructors in negotiator.boaframework with parameters of type ComponentsEnum
BOAcomponent(java.lang.String classname, ComponentsEnum type)
          Variant of the main constructor in which it is assumed that the component has no parameters.
BOAcomponent(java.lang.String classname, ComponentsEnum type, java.util.ArrayList<BOAparameter> orgParam)
          Variant of the main constructor in which it is assumed that the component has no parameters.
BOAcomponent(java.lang.String classname, ComponentsEnum type, java.util.HashMap<java.lang.String,java.math.BigDecimal> strategyParam)
          Creates a BOA component consisting of the classname of the components, the type, and the parameters with which the component should be loaded.
 

Uses of ComponentsEnum in negotiator.boaframework.repository
 

Methods in negotiator.boaframework.repository that return ComponentsEnum
 ComponentsEnum BOArepItem.getType()
           
 

Constructors in negotiator.boaframework.repository with parameters of type ComponentsEnum
BOArepItem(java.lang.String name, java.lang.String classPath, ComponentsEnum type)